home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #15 / Monster Media Number 15 (Monster Media)(July 1996).ISO / prog_gen / sb402.zip / INDESTAL.INF < prev    next >
Text File  |  1996-03-28  |  729b  |  18 lines

  1. // Double click on this sample in file manager to run it
  2.  
  3. // Create the dialog
  4. CreateDialog("PUSHB2","%Caption%", 40, 40, 260, 145)
  5. CreateControl("groupbox","",-1,6,4,247,110,0)
  6. CreateControl("icon","setup",-1,15,20,0,0,0)
  7. CreateControl("text","Please make a selection from the following options:",-1,60,30,170,24,0)
  8. CreateControl("button","&Install",IDOK,38,56,40,14,1)
  9. CreateControl("text","Install the %Application% software",-1,100,58,145,8,0)
  10. CreateControl("button","&De-Install",IDBUTTON2,38,80,40,14,1)
  11. CreateControl("text","Un-Install the %Application% software",-1,100,82,145,8,0)
  12. CreateControl("button","&Cancel",IDCANCEL,6,126,40,14,0)
  13. CentreDialog()
  14. SetFocus(IDOK)
  15.  
  16. // Now run it
  17. DialogBox("PUSHB2")
  18.